home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / editors / emcs1857 / 1857sr~1.zoo / src / regex.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-02  |  51.5 KB  |  2,062 lines

  1. /* Extended regular expression matching and search.
  2.    Copyright (C) 1985, 1991 Free Software Foundation, Inc.
  3.  
  4.     This program is free software; you can redistribute it and/or modify
  5.     it under the terms of the GNU General Public License as published by
  6.     the Free Software Foundation; either version 1, or (at your option)
  7.     any later version.
  8.  
  9.     This program is distributed in the hope that it will be useful,
  10.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.     GNU General Public License for more details.
  13.  
  14.     You should have received a copy of the GNU General Public License
  15.     along with this program; if not, write to the Free Software
  16.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. In other words, you are welcome to use, share and improve this program.
  19. You are forbidden to forbid anyone else to use, share and improve
  20. what you give them.   Help stamp out software-hoarding!  */
  21.  
  22.  
  23. /* Modified 1991 for 8-bit character support by Howard Gayle.
  24.  *  See chartab.c for details. */
  25.  
  26.  
  27. /* To test, compile with -Dtest.
  28.  This Dtestable feature turns this into a self-contained program
  29.  which reads a pattern, describes how it compiles,
  30.  then reads a string and searches for it.  */
  31.  
  32.  
  33. #ifdef emacs
  34.  
  35. /* The `emacs' switch turns on certain special matching commands
  36.  that make sense only in emacs. */
  37.  
  38. #include "config.h"
  39. #include "lisp.h"
  40. #include "buffer.h"
  41. #include "sorttab.h"
  42. #include "syntax.h"
  43.  
  44. #else  /* not emacs */
  45.  
  46. /*
  47.  * Define the syntax stuff, so we can do the \<...\> things.
  48.  */
  49.  
  50. #ifndef Sword /* must be non-zero in some of the tests below... */
  51. #define Sword 1
  52. #endif
  53.  
  54. #define SYNTAX(c) re_syntax_table[c]
  55.  
  56. #ifdef SYNTAX_TABLE
  57.  
  58. char *re_syntax_table;
  59.  
  60. #else
  61.  
  62. static char re_syntax_table[256];
  63.  
  64. static void
  65. init_syntax_once ()
  66. {
  67.    register int c;
  68.    static int done = 0;
  69.  
  70.    if (done)
  71.      return;
  72.  
  73.    bzero (re_syntax_table, sizeof re_syntax_table);
  74.  
  75.    for (c = 'a'; c <= 'z'; c++)
  76.      re_syntax_table[c] = Sword;
  77.  
  78.    for (c = 'A'; c <= 'Z'; c++)
  79.      re_syntax_table[c] = Sword;
  80.  
  81.    for (c = '0'; c <= '9'; c++)
  82.      re_syntax_table[c] = Sword;
  83.  
  84.    done = 1;
  85. }
  86.  
  87. #endif /* SYNTAX_TABLE */
  88. #endif /* not emacs */
  89.  
  90. #include "regex.h"
  91.  
  92. /* Number of failure points to allocate space for initially,
  93.  when matching.  If this number is exceeded, more space is allocated,
  94.  so it is not a hard limit.  */
  95.  
  96. #ifndef NFAILURES
  97. #define NFAILURES 80
  98. #endif NFAILURES
  99.  
  100. /* width of a byte in bits */
  101.  
  102. #define BYTEWIDTH 8
  103.  
  104. #ifndef SIGN_EXTEND_CHAR
  105. #define SIGN_EXTEND_CHAR(x) (x)
  106. #endif
  107.  
  108. static int obscure_syntax = 0;
  109.  
  110. /* Specify the precise syntax of regexp for compilation.
  111.    This provides for compatibility for various utilities
  112.    which historically have different, incompatible syntaxes.
  113.  
  114.    The argument SYNTAX is a bit-mask containing the two bits
  115.    RE_NO_BK_PARENS and RE_NO_BK_VBAR.  */
  116.  
  117. int
  118. re_set_syntax (syntax)
  119. {
  120.   int ret;
  121.  
  122.   ret = obscure_syntax;
  123.   obscure_syntax = syntax;
  124.   return ret;
  125. }
  126.  
  127. /* re_compile_pattern takes a regular-expression string
  128.    and converts it into a buffer full of byte commands for matching.
  129.  
  130.   PATTERN   is the address of the pattern string
  131.   SIZE      is the length of it.
  132.   BUFP        is a  struct re_pattern_buffer *  which points to the info
  133.         on where to store the byte commands.
  134.         This structure contains a  char *  which points to the
  135.         actual space, which should have been obtained with malloc.
  136.         re_compile_pattern may use  realloc  to grow the buffer space.
  137.  
  138.   The number of bytes of commands can be found out by looking in
  139.   the  struct re_pattern_buffer  that bufp pointed to,
  140.   after re_compile_pattern returns.
  141. */
  142.  
  143. #define PATPUSH(ch) (*b++ = (unsigned char) (ch))
  144.  
  145. #define PATFETCH(c) \
  146.  {if (p == pend) goto end_of_pattern; \
  147.   c = *p++; }
  148.  
  149. #define PATUNFETCH p--
  150.  
  151. #define EXTEND_BUFFER \
  152.   { unsigned char *old_buffer = bufp->buffer; \
  153.     if (bufp->allocated == (1<<16)) goto too_big; \
  154.     bufp->allocated *= 2; \
  155.     if (bufp->allocated > (1<<16)) bufp->allocated = (1<<16); \
  156.     if (!(bufp->buffer = (unsigned char *) realloc (bufp->buffer, bufp->allocated))) \
  157.       goto memory_exhausted; \
  158.     c = bufp->buffer - old_buffer; \
  159.     b += c; \
  160.     if (fixup_jump) \
  161.       fixup_jump += c; \
  162.     if (laststart) \
  163.       laststart += c; \
  164.     begalt += c; \
  165.     if (pending_exact) \
  166.       pending_exact += c; \
  167.   }
  168.  
  169. static int store_jump (), insert_jump ();
  170.  
  171. #ifdef emacs
  172.  
  173. void
  174. set_bits (b, c, st)
  175. register unsigned char *b;
  176. register int c;
  177. register struct Lisp_Sorttab *st;
  178. {
  179. register int i;
  180. register int hi;
  181. register int ec;
  182.  
  183. if (st == NULL_SORT_TABLE)
  184.    b[c / BYTEWIDTH] |= 1 << (c % BYTEWIDTH);
  185. else
  186.    {
  187.    ec = st->srt_ec[c];
  188.    hi = st->srt_dope[ec].ec_hi;
  189.    for (i = st->srt_dope[ec].ec_lo; i <= hi; ++i)
  190.       {
  191.       c = st->srt_chars[i];
  192.       b[c / BYTEWIDTH] |= 1 << (c % BYTEWIDTH);
  193.       }
  194.    }
  195. }
  196.  
  197. char *
  198. re_compile_pattern_sort (pattern, size, bufp, sorttab)
  199.      unsigned char *pattern;
  200.      int size;
  201.      struct re_pattern_buffer *bufp;
  202.      struct Lisp_Sorttab *sorttab;
  203. {
  204.   register unsigned char *b = bufp->buffer;
  205.   register unsigned char *p = pattern;
  206.   unsigned char *pend = pattern + size;
  207.   register unsigned c, c1;
  208.   unsigned char *p1;
  209.  
  210.   /* address of the count-byte of the most recently inserted "exactn" command.
  211.     This makes it possible to tell whether a new exact-match character
  212.     can be added to that command or requires a new "exactn" command. */
  213.      
  214.   unsigned char *pending_exact = 0;
  215.  
  216.   /* address of the place where a forward-jump should go
  217.     to the end of the containing expression.
  218.     Each alternative of an "or", except the last, ends with a forward-jump
  219.     of this sort. */
  220.  
  221.   unsigned char *fixup_jump = 0;
  222.  
  223.   /* address of start of the most recently finished expression.
  224.     This tells postfix * where to find the start of its operand. */
  225.  
  226.   unsigned char *laststart = 0;
  227.  
  228.   /* In processing a repeat, 1 means zero matches is allowed */
  229.  
  230.   unsigned char zero_times_ok;
  231.  
  232.   /* In processing a repeat, 1 means many matches is allowed */
  233.  
  234.   unsigned char many_times_ok;
  235.  
  236.   /* address of beginning of regexp, or inside of last \( */
  237.  
  238.   unsigned char *begalt = b;
  239.  
  240.   /* Stack of information saved by \( and restored by \).
  241.      Four stack elements are pushed by each \(:
  242.        First, the value of b.
  243.        Second, the value of fixup_jump.
  244.        Third, the value of regnum.
  245.        Fourth, the value of begalt.  */
  246.  
  247.   int stackb[40];
  248.   int *stackp = stackb;
  249.   int *stacke = stackb + 40;
  250.   int *stackt;
  251.  
  252.   /* Counts \('s as they are encountered.  Remembered for the matching \),
  253.      where it becomes the "register number" to put in the stop_memory command */
  254.  
  255.   int regnum = 1;
  256.  
  257.   bufp->fastmap_accurate = 0;
  258.  
  259.   if (bufp->allocated == 0)
  260.     {
  261.       bufp->allocated = 28;
  262.       if (bufp->buffer)
  263.     /* EXTEND_BUFFER loses when bufp->allocated is 0 */
  264.     bufp->buffer = (unsigned char *) realloc (bufp->buffer, 28);
  265.       else
  266.     /* Caller did not allocate a buffer.  Do it for him */
  267.     bufp->buffer = (unsigned char *) malloc (28);
  268.       if (!bufp->buffer) goto memory_exhausted;
  269.       begalt = b = bufp->buffer;
  270.     }
  271.  
  272.   while (p != pend)
  273.     {
  274.       if (b - bufp->buffer > bufp->allocated - 10)
  275.     /* Note that EXTEND_BUFFER clobbers c */
  276.     EXTEND_BUFFER;
  277.  
  278.       PATFETCH (c);
  279.  
  280.       switch (c)
  281.     {
  282.     case '$':
  283.       /* $ means succeed if at end of line, but only in special contexts.
  284.         If randonly in the middle of a pattern, it is a normal character. */
  285.       if (p == pend || (*p == '\\' && (p[1] == ')' || p[1] == '|')))
  286.         {
  287.           PATPUSH (endline);
  288.           break;
  289.         }
  290.       goto normal_char;
  291.  
  292.     case '^':
  293.       /* ^ means succeed if at beg of line, but only if no preceding pattern. */
  294.       if (laststart) goto normal_char;
  295.       PATPUSH (begline);
  296.       break;
  297.  
  298.     case '*':
  299.     case '+':
  300.     case '?':
  301.       /* If there is no previous pattern, char not special. */
  302.       if (!laststart)
  303.         goto normal_char;
  304.       /* If there is a sequence of repetition chars,
  305.          collapse it down to equivalent to just one.  */
  306.       zero_times_ok = 0;
  307.       many_times_ok = 0;
  308.       while (1)
  309.         {
  310.           zero_times_ok |= c != '+';
  311.           many_times_ok |= c != '?';
  312.           if (p == pend)
  313.         break;
  314.           PATFETCH (c);
  315.           if (!(c == '*' || c == '+' || c == '?'))
  316.         {
  317.           PATUNFETCH;
  318.           break;
  319.         }
  320.         }
  321.  
  322.       /* Now we know whether 0 matches is allowed,
  323.          and whether 2 or more matches is allowed.  */
  324.       if (many_times_ok)
  325.         {
  326.           /* If more than one repetition is allowed,
  327.          put in a backward jump at the end.  */
  328.           store_jump (b, maybe_finalize_jump, laststart - 3);
  329.           b += 3;
  330.         }
  331.       insert_jump (on_failure_jump, laststart, b + 3, b);
  332.       pending_exact = 0;
  333.       b += 3;
  334.       if (!zero_times_ok)
  335.         {
  336.           /* At least one repetition required: insert before the loop
  337.          a skip over the initial on-failure-jump instruction */
  338.           insert_jump (dummy_failure_jump, laststart, laststart + 6, b);
  339.           b += 3;
  340.         }
  341.       break;
  342.  
  343.     case '.':
  344.       laststart = b;
  345.       PATPUSH (anychar);
  346.       break;
  347.  
  348.     case '[':
  349.       if (b - bufp->buffer
  350.           > bufp->allocated - 3 - (1 << BYTEWIDTH) / BYTEWIDTH)
  351.         /* Note that EXTEND_BUFFER clobbers c */
  352.         EXTEND_BUFFER;
  353.  
  354.       laststart = b;
  355.       if (*p == '^')
  356.         PATPUSH (charset_not), p++;
  357.       else
  358.         PATPUSH (charset);
  359.       p1 = p;
  360.  
  361.       PATPUSH ((1 << BYTEWIDTH) / BYTEWIDTH);
  362.       /* Clear the whole map */
  363.       bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH);
  364.       /* Read in characters and ranges, setting map bits */
  365.       while (1)
  366.         {
  367.           PATFETCH (c);
  368.           if (c == ']' && p != p1 + 1) break;
  369.           if (*p == '-')
  370.         {
  371.           PATFETCH (c1);
  372.           PATFETCH (c1);
  373.           while (c <= c1)
  374.             set_bits (b, c++, sorttab);
  375.         }
  376.           else
  377.         set_bits (b, c, sorttab);
  378.         }
  379.       /* Discard any bitmap bytes that are all 0 at the end of the map.
  380.          Decrement the map-length byte too. */
  381.       while (b[-1] > 0 && b[b[-1] - 1] == 0)
  382.         b[-1]--;
  383.       b += b[-1];
  384.       break;
  385.  
  386.         case '\\':
  387.       if (p == pend) goto invalid_pattern;
  388.       PATFETCH (c);
  389.       switch (c)
  390.         {
  391.         case '(':
  392.           if (stackp == stacke) goto nesting_too_deep;
  393.           if (regnum < RE_NREGS)
  394.             {
  395.           PATPUSH (start_memory);
  396.           PATPUSH (regnum);
  397.             }
  398.           *stackp++ = b - bufp->buffer;
  399.           *stackp++ = fixup_jump ? fixup_jump - bufp->buffer + 1 : 0;
  400.           *stackp++ = regnum++;
  401.           *stackp++ = begalt - bufp->buffer;
  402.           fixup_jump = 0;
  403.           laststart = 0;
  404.           begalt = b;
  405.           break;
  406.  
  407.         case ')':
  408.           if (stackp == stackb) goto unmatched_close;
  409.           begalt = *--stackp + bufp->buffer;
  410.           if (fixup_jump)
  411.         store_jump (fixup_jump, jump, b);
  412.           if (stackp[-1] < RE_NREGS)
  413.         {
  414.           PATPUSH (stop_memory);
  415.           PATPUSH (stackp[-1]);
  416.         }
  417.           stackp -= 2;
  418.           fixup_jump = 0;
  419.           if (*stackp)
  420.         fixup_jump = *stackp + bufp->buffer - 1;
  421.           laststart = *--stackp + bufp->buffer;
  422.           break;
  423.  
  424.         case '|':
  425.           insert_jump (on_failure_jump, begalt, b + 6, b);
  426.           pending_exact = 0;
  427.           b += 3;
  428.           if (fixup_jump)
  429.         store_jump (fixup_jump, jump, b);
  430.           fixup_jump = b;
  431.           b += 3;
  432.           laststart = 0;
  433.           begalt = b;
  434.           break;
  435.  
  436.         case '=':
  437.           PATPUSH (at_dot);
  438.           break;
  439.  
  440.         case 's':    
  441.           laststart = b;
  442.           PATPUSH (syntaxspec);
  443.           PATFETCH (c);
  444.           PATPUSH (syntax_spec_code[c]);
  445.           break;
  446.  
  447.         case 'S':
  448.           laststart = b;
  449.           PATPUSH (notsyntaxspec);
  450.           PATFETCH (c);
  451.           PATPUSH (syntax_spec_code[c]);
  452.           break;
  453.  
  454.         case 'w':
  455.           laststart = b;
  456.           PATPUSH (wordchar);
  457.           break;
  458.  
  459.         case 'W':
  460.           laststart = b;
  461.           PATPUSH (notwordchar);
  462.           break;
  463.  
  464.         case '<':
  465.           PATPUSH (wordbeg);
  466.           break;
  467.  
  468.         case '>':
  469.           PATPUSH (wordend);
  470.           break;
  471.  
  472.         case 'b':
  473.           PATPUSH (wordbound);
  474.           break;
  475.  
  476.         case 'B':
  477.           PATPUSH (notwordbound);
  478.           break;
  479.  
  480.         case '`':
  481.           PATPUSH (begbuf);
  482.           break;
  483.  
  484.         case '\'':
  485.           PATPUSH (endbuf);
  486.           break;
  487.  
  488.         case '1':
  489.         case '2':
  490.         case '3':
  491.         case '4':
  492.         case '5':
  493.         case '6':
  494.         case '7':
  495.         case '8':
  496.         case '9':
  497.           c1 = c - '0';
  498.           if (c1 >= regnum)
  499.         goto normal_char;
  500.           for (stackt = stackp - 2;  stackt > stackb;  stackt -= 4)
  501.          if (*stackt == c1)
  502.           goto normal_char;
  503.           laststart = b;
  504.           PATPUSH (duplicate);
  505.           PATPUSH (c1);
  506.           break;
  507.         default:
  508.           goto normal_char;
  509.         }
  510.       break;
  511.  
  512.     default:
  513.     normal_char:
  514.       if ((sorttab == NULL_SORT_TABLE) ||
  515.           (sorttab->srt_dope[sorttab->srt_ec[c]].ec_lo ==
  516.           sorttab->srt_dope[sorttab->srt_ec[c]].ec_hi))
  517.         {
  518.           if (!pending_exact || pending_exact + *pending_exact + 1 != b
  519.               || *pending_exact == 0177 || *p == '*' || *p == '^'
  520.               || *p == '+' || *p == '?')
  521.             {
  522.               laststart = b;
  523.               PATPUSH (exactn);
  524.               pending_exact = b;
  525.               PATPUSH (0);
  526.             }
  527.           PATPUSH (c);
  528.           (*pending_exact)++;
  529.         }
  530.       else
  531.         {
  532.           if (b - bufp->buffer
  533.               > bufp->allocated - 3 - (1 << BYTEWIDTH) / BYTEWIDTH)
  534.             /* Note that EXTEND_BUFFER clobbers c */
  535.         {
  536.           c1 = c;
  537.               EXTEND_BUFFER;
  538.           c = c1;
  539.         }
  540.  
  541.           laststart = b;
  542.           PATPUSH (charset);
  543.  
  544.           PATPUSH ((1 << BYTEWIDTH) / BYTEWIDTH);
  545.           /* Clear the whole map */
  546.           bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH);
  547.           set_bits (b, c, sorttab);
  548.           /* Discard any bitmap bytes that are all 0 at the end of the map.
  549.              Decrement the map-length byte too. */
  550.           while (b[-1] > 0 && b[b[-1] - 1] == 0)
  551.             b[-1]--;
  552.           b += b[-1];
  553.         }
  554.     }
  555.     }
  556.  
  557.   if (fixup_jump)
  558.     store_jump (fixup_jump, jump, b);
  559.  
  560.   if (stackp != stackb) goto unmatched_open;
  561.  
  562.   bufp->used = b - bufp->buffer;
  563.   return 0;
  564.  
  565.  invalid_pattern:
  566.   return "Invalid regular expression";
  567.  
  568.  unmatched_open:
  569.   return "Unmatched \\(";
  570.  
  571.  unmatched_close:
  572.   return "Unmatched \\)";
  573.  
  574.  end_of_pattern:
  575.   return "Premature end of regular expression";
  576.  
  577.  nesting_too_deep:
  578.   return "Nesting too deep";
  579.  
  580.  too_big:
  581.   return "Regular expression too big";
  582.  
  583.  memory_exhausted:
  584.   return "Memory exhausted";
  585. }
  586.  
  587. #else /* not emacs */
  588.  
  589. char *
  590. re_compile_pattern (pattern, size, bufp)
  591.      unsigned char *pattern;
  592.      int size;
  593.      struct re_pattern_buffer *bufp;
  594. {
  595.   register unsigned char *b = bufp->buffer;
  596.   register unsignedchar *p = pattern;
  597.   char *pend = pattern + size;
  598.   register unsigned c, c1;
  599.   unsigned char *p1;
  600.   unsigned char *translate = (unsigned char *) bufp->translate;
  601.  
  602.   /* address of the count-byte of the most recently inserted "exactn" command.
  603.     This makes it possible to tell whether a new exact-match character
  604.     can be added to that command or requires a new "exactn" command. */
  605.      
  606.   unsigned char *pending_exact = 0;
  607.  
  608.   /* address of the place where a forward-jump should go
  609.     to the end of the containing expression.
  610.     Each alternative of an "or", except the last, ends with a forward-jump
  611.     of this sort. */
  612.  
  613.   unsigned char *fixup_jump = 0;
  614.  
  615.   /* address of start of the most recently finished expression.
  616.     This tells postfix * where to find the start of its operand. */
  617.  
  618.   unsigned char *laststart = 0;
  619.  
  620.   /* In processing a repeat, 1 means zero matches is allowed */
  621.  
  622.   unsigned char zero_times_ok;
  623.  
  624.   /* In processing a repeat, 1 means many matches is allowed */
  625.  
  626.   unsigned char many_times_ok;
  627.  
  628.   /* address of beginning of regexp, or inside of last \( */
  629.  
  630.   unsigend char *begalt = b;
  631.  
  632.   /* Stack of information saved by \( and restored by \).
  633.      Four stack elements are pushed by each \(:
  634.        First, the value of b.
  635.        Second, the value of fixup_jump.
  636.        Third, the value of regnum.
  637.        Fourth, the value of begalt.  */
  638.  
  639.   int stackb[40];
  640.   int *stackp = stackb;
  641.   int *stacke = stackb + 40;
  642.   int *stackt;
  643.  
  644.   /* Counts \('s as they are encountered.  Remembered for the matching \),
  645.      where it becomes the "register number" to put in the stop_memory command */
  646.  
  647.   int regnum = 1;
  648.  
  649.   bufp->fastmap_accurate = 0;
  650.  
  651. #ifndef SYNTAX_TABLE
  652.   /*
  653.    * Initialize the syntax table.
  654.    */
  655.    init_syntax_once();
  656. #endif
  657.  
  658.   if (bufp->allocated == 0)
  659.     {
  660.       bufp->allocated = 28;
  661.       if (bufp->buffer)
  662.     /* EXTEND_BUFFER loses when bufp->allocated is 0 */
  663.     bufp->buffer = (unsigned char *) realloc (bufp->buffer, 28);
  664.       else
  665.     /* Caller did not allocate a buffer.  Do it for him */
  666.     bufp->buffer = (unsigned char *) malloc (28);
  667.       if (!bufp->buffer) goto memory_exhausted;
  668.       begalt = b = bufp->buffer;
  669.     }
  670.  
  671.   while (p != pend)
  672.     {
  673.       if (b - bufp->buffer > bufp->allocated - 10)
  674.     /* Note that EXTEND_BUFFER clobbers c */
  675.     EXTEND_BUFFER;
  676.  
  677.       PATFETCH (c);
  678.  
  679.       switch (c)
  680.     {
  681.     case '$':
  682.       if (obscure_syntax & RE_TIGHT_VBAR)
  683.         {
  684.           if (! (obscure_syntax & RE_CONTEXT_INDEP_OPS) && p != pend)
  685.         goto normal_char;
  686.           /* Make operand of last vbar end before this `$'.  */
  687.           if (fixup_jump)
  688.         store_jump (fixup_jump, jump, b);
  689.           fixup_jump = 0;
  690.           PATPUSH (endline);
  691.           break;
  692.         }
  693.  
  694.       /* $ means succeed if at end of line, but only in special contexts.
  695.         If randomly in the middle of a pattern, it is a normal character. */
  696.       if (p == pend || *p == '\n'
  697.           || (obscure_syntax & RE_CONTEXT_INDEP_OPS)
  698.           || (obscure_syntax & RE_NO_BK_PARENS
  699.           ? *p == ')'
  700.           : *p == '\\' && p[1] == ')')
  701.           || (obscure_syntax & RE_NO_BK_VBAR
  702.           ? *p == '|'
  703.           : *p == '\\' && p[1] == '|'))
  704.         {
  705.           PATPUSH (endline);
  706.           break;
  707.         }
  708.       goto normal_char;
  709.  
  710.     case '^':
  711.       /* ^ means succeed if at beg of line, but only if no preceding pattern. */
  712.  
  713.       if (laststart && p[-2] != '\n'
  714.           && ! (obscure_syntax & RE_CONTEXT_INDEP_OPS))
  715.         goto normal_char;
  716.       if (obscure_syntax & RE_TIGHT_VBAR)
  717.         {
  718.           if (p != pattern + 1
  719.           && ! (obscure_syntax & RE_CONTEXT_INDEP_OPS))
  720.         goto normal_char;
  721.           PATPUSH (begline);
  722.           begalt = b;
  723.         }
  724.       else
  725.         PATPUSH (begline);
  726.       break;
  727.  
  728.     case '+':
  729.     case '?':
  730.       if (obscure_syntax & RE_BK_PLUS_QM)
  731.         goto normal_char;
  732.     handle_plus:
  733.     case '*':
  734.       /* If there is no previous pattern, char not special. */
  735.       if (!laststart && ! (obscure_syntax & RE_CONTEXT_INDEP_OPS))
  736.         goto normal_char;
  737.       /* If there is a sequence of repetition chars,
  738.          collapse it down to equivalent to just one.  */
  739.       zero_times_ok = 0;
  740.       many_times_ok = 0;
  741.       while (1)
  742.         {
  743.           zero_times_ok |= c != '+';
  744.           many_times_ok |= c != '?';
  745.           if (p == pend)
  746.         break;
  747.           PATFETCH (c);
  748.           if (c == '*')
  749.         ;
  750.           else if (!(obscure_syntax & RE_BK_PLUS_QM)
  751.                && (c == '+' || c == '?'))
  752.         ;
  753.           else if ((obscure_syntax & RE_BK_PLUS_QM)
  754.                && c == '\\')
  755.         {
  756.           int c1;
  757.           PATFETCH (c1);
  758.           if (!(c1 == '+' || c1 == '?'))
  759.             {
  760.               PATUNFETCH;
  761.               PATUNFETCH;
  762.               break;
  763.             }
  764.           c = c1;
  765.         }
  766.           else
  767.         {
  768.           PATUNFETCH;
  769.           break;
  770.         }
  771.         }
  772.  
  773.       /* Star, etc. applied to an empty pattern is equivalent
  774.          to an empty pattern.  */
  775.       if (!laststart)
  776.         break;
  777.  
  778.       /* Now we know whether 0 matches is allowed,
  779.          and whether 2 or more matches is allowed.  */
  780.       if (many_times_ok)
  781.         {
  782.           /* If more than one repetition is allowed,
  783.          put in a backward jump at the end.  */
  784.           store_jump (b, maybe_finalize_jump, laststart - 3);
  785.           b += 3;
  786.         }
  787.       insert_jump (on_failure_jump, laststart, b + 3, b);
  788.       pending_exact = 0;
  789.       b += 3;
  790.       if (!zero_times_ok)
  791.         {
  792.           /* At least one repetition required: insert before the loop
  793.          a skip over the initial on-failure-jump instruction */
  794.           insert_jump (dummy_failure_jump, laststart, laststart + 6, b);
  795.           b += 3;
  796.         }
  797.       break;
  798.  
  799.     case '.':
  800.       laststart = b;
  801.       PATPUSH (anychar);
  802.       break;
  803.  
  804.     case '[':
  805.       while (b - bufp->buffer
  806.          > bufp->allocated - 3 - (1 << BYTEWIDTH) / BYTEWIDTH)
  807.         /* Note that EXTEND_BUFFER clobbers c */
  808.         EXTEND_BUFFER;
  809.  
  810.       laststart = b;
  811.       if (*p == '^')
  812.         PATPUSH (charset_not), p++;
  813.       else
  814.         PATPUSH (charset);
  815.       p1 = p;
  816.  
  817.       PATPUSH ((1 << BYTEWIDTH) / BYTEWIDTH);
  818.       /* Clear the whole map */
  819.       bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH);
  820.       /* Read in characters and ranges, setting map bits */
  821.       while (1)
  822.         {
  823.           PATFETCH (c);
  824.           if (c == ']' && p != p1 + 1) break;
  825.           if (*p == '-' && p[1] != ']')
  826.         {
  827.           PATFETCH (c1);
  828.           PATFETCH (c1);
  829.           while (c <= c1)
  830.             b[c / BYTEWIDTH] |= 1 << (c % BYTEWIDTH), c++;
  831.         }
  832.           else
  833.         {
  834.           b[c / BYTEWIDTH] |= 1 << (c % BYTEWIDTH);
  835.         }
  836.         }
  837.       /* Discard any bitmap bytes that are all 0 at the end of the map.
  838.          Decrement the map-length byte too. */
  839.       while ((int) b[-1] > 0 && b[b[-1] - 1] == 0)
  840.         b[-1]--;
  841.       b += b[-1];
  842.       break;
  843.  
  844.     case '(':
  845.       if (! (obscure_syntax & RE_NO_BK_PARENS))
  846.         goto normal_char;
  847.       else
  848.         goto handle_open;
  849.  
  850.     case ')':
  851.       if (! (obscure_syntax & RE_NO_BK_PARENS))
  852.         goto normal_char;
  853.       else
  854.         goto handle_close;
  855.  
  856.     case '\n':
  857.       if (! (obscure_syntax & RE_NEWLINE_OR))
  858.         goto normal_char;
  859.       else
  860.         goto handle_bar;
  861.  
  862.     case '|':
  863.       if (! (obscure_syntax & RE_NO_BK_VBAR))
  864.         goto normal_char;
  865.       else
  866.         goto handle_bar;
  867.  
  868.         case '\\':
  869.       if (p == pend) goto invalid_pattern;
  870.       PATFETCH (c);
  871.       switch (c)
  872.         {
  873.         case '(':
  874.           if (obscure_syntax & RE_NO_BK_PARENS)
  875.         goto normal_backsl;
  876.         handle_open:
  877.           if (stackp == stacke) goto nesting_too_deep;
  878.           if (regnum < RE_NREGS)
  879.             {
  880.           PATPUSH (start_memory);
  881.           PATPUSH (regnum);
  882.             }
  883.           *stackp++ = b - bufp->buffer;
  884.           *stackp++ = fixup_jump ? fixup_jump - bufp->buffer + 1 : 0;
  885.           *stackp++ = regnum++;
  886.           *stackp++ = begalt - bufp->buffer;
  887.           fixup_jump = 0;
  888.           laststart = 0;
  889.           begalt = b;
  890.           break;
  891.  
  892.         case ')':
  893.           if (obscure_syntax & RE_NO_BK_PARENS)
  894.         goto normal_backsl;
  895.         handle_close:
  896.           if (stackp == stackb) goto unmatched_close;
  897.           begalt = *--stackp + bufp->buffer;
  898.           if (fixup_jump)
  899.         store_jump (fixup_jump, jump, b);
  900.           if (stackp[-1] < RE_NREGS)
  901.         {
  902.           PATPUSH (stop_memory);
  903.           PATPUSH (stackp[-1]);
  904.         }
  905.           stackp -= 2;
  906.           fixup_jump = 0;
  907.           if (*stackp)
  908.         fixup_jump = *stackp + bufp->buffer - 1;
  909.           laststart = *--stackp + bufp->buffer;
  910.           break;
  911.  
  912.         case '|':
  913.           if (obscure_syntax & RE_NO_BK_VBAR)
  914.         goto normal_backsl;
  915.         handle_bar:
  916.           insert_jump (on_failure_jump, begalt, b + 6, b);
  917.           pending_exact = 0;
  918.           b += 3;
  919.           if (fixup_jump)
  920.         store_jump (fixup_jump, jump, b);
  921.           fixup_jump = b;
  922.           b += 3;
  923.           laststart = 0;
  924.           begalt = b;
  925.           break;
  926.  
  927. #ifdef emacs
  928.         case '=':
  929.           PATPUSH (at_dot);
  930.           break;
  931.  
  932.         case 's':    
  933.           laststart = b;
  934.           PATPUSH (syntaxspec);
  935.           PATFETCH (c);
  936.           PATPUSH (syntax_spec_code[c]);
  937.           break;
  938.  
  939.         case 'S':
  940.           laststart = b;
  941.           PATPUSH (notsyntaxspec);
  942.           PATFETCH (c);
  943.           PATPUSH (syntax_spec_code[c]);
  944.           break;
  945. #endif emacs
  946.  
  947.         case 'w':
  948.           laststart = b;
  949.           PATPUSH (wordchar);
  950.           break;
  951.  
  952.         case 'W':
  953.           laststart = b;
  954.           PATPUSH (notwordchar);
  955.           break;
  956.  
  957.         case '<':
  958.           PATPUSH (wordbeg);
  959.           break;
  960.  
  961.         case '>':
  962.           PATPUSH (wordend);
  963.           break;
  964.  
  965.         case 'b':
  966.           PATPUSH (wordbound);
  967.           break;
  968.  
  969.         case 'B':
  970.           PATPUSH (notwordbound);
  971.           break;
  972.  
  973.         case '`':
  974.           PATPUSH (begbuf);
  975.           break;
  976.  
  977.         case '\'':
  978.           PATPUSH (endbuf);
  979.           break;
  980.  
  981.         case '1':
  982.         case '2':
  983.         case '3':
  984.         case '4':
  985.         case '5':
  986.         case '6':
  987.         case '7':
  988.         case '8':
  989.         case '9':
  990.           c1 = c - '0';
  991.           if (c1 >= regnum)
  992.         goto normal_char;
  993.           for (stackt = stackp - 2;  stackt > stackb;  stackt -= 4)
  994.          if (*stackt == c1)
  995.           goto normal_char;
  996.           laststart = b;
  997.           PATPUSH (duplicate);
  998.           PATPUSH (c1);
  999.           break;
  1000.  
  1001.         case '+':
  1002.         case '?':
  1003.           if (obscure_syntax & RE_BK_PLUS_QM)
  1004.         goto handle_plus;
  1005.  
  1006.         default:
  1007.         normal_backsl:
  1008.           goto normal_char;
  1009.         }
  1010.       break;
  1011.  
  1012.     default:
  1013.     normal_char:
  1014.       if (!pending_exact || pending_exact + *pending_exact + 1 != b
  1015.           || *pending_exact == 0177 || *p == '*' || *p == '^'
  1016.           || ((obscure_syntax & RE_BK_PLUS_QM)
  1017.           ? *p == '\\' && (p[1] == '+' || p[1] == '?')
  1018.           : (*p == '+' || *p == '?')))
  1019.         {
  1020.           laststart = b;
  1021.           PATPUSH (exactn);
  1022.           pending_exact = b;
  1023.           PATPUSH (0);
  1024.         }
  1025.       PATPUSH (c);
  1026.       (*pending_exact)++;
  1027.     }
  1028.     }
  1029.  
  1030.   if (fixup_jump)
  1031.     store_jump (fixup_jump, jump, b);
  1032.  
  1033.   if (stackp != stackb) goto unmatched_open;
  1034.  
  1035.   bufp->used = b - bufp->buffer;
  1036.   return 0;
  1037.  
  1038.  invalid_pattern:
  1039.   return "Invalid regular expression";
  1040.  
  1041.  unmatched_open:
  1042.   return "Unmatched \\(";
  1043.  
  1044.  unmatched_close:
  1045.   return "Unmatched \\)";
  1046.  
  1047.  end_of_pattern:
  1048.   return "Premature end of regular expression";
  1049.  
  1050.  nesting_too_deep:
  1051.   return "Nesting too deep";
  1052.  
  1053.  too_big:
  1054.   return "Regular expression too big";
  1055.  
  1056.  memory_exhausted:
  1057.   return "Memory exhausted";
  1058. }
  1059.  
  1060. #endif /* !emacs */
  1061.  
  1062. /* Store where `from' points a jump operation to jump to where `to' points.
  1063.   `opcode' is the opcode to store. */
  1064.  
  1065. static int
  1066. store_jump (from, opcode, to)
  1067.      char *from, *to;
  1068.      char opcode;
  1069. {
  1070.   from[0] = opcode;
  1071.   from[1] = (to - (from + 3)) & 0377;
  1072.   from[2] = (to - (from + 3)) >> 8;
  1073. }
  1074.  
  1075. /* Open up space at char FROM, and insert there a jump to TO.
  1076.    CURRENT_END gives te end of the storage no in use,
  1077.    so we know how much data to copy up.
  1078.    OP is the opcode of the jump to insert.
  1079.  
  1080.    If you call this function, you must zero out pending_exact.  */
  1081.  
  1082. static int
  1083. insert_jump (op, from, to, current_end)
  1084.      unsigned char op;
  1085.      unsigned char *from, *to, *current_end;
  1086. {
  1087.   register unsigned char *pto = current_end + 3;
  1088.   register unsigned char *pfrom = current_end;
  1089.   while (pfrom != from)
  1090.     *--pto = *--pfrom;
  1091.   store_jump (from, op, to);
  1092. }
  1093.  
  1094. /* Given a pattern, compute a fastmap from it.
  1095.  The fastmap records which of the (1 << BYTEWIDTH) possible characters
  1096.  can start a string that matches the pattern.
  1097.  This fastmap is used by re_search to skip quickly over totally implausible text.
  1098.  
  1099.  The caller must supply the address of a (1 << BYTEWIDTH)-byte data area
  1100.  as bufp->fastmap.
  1101.  The other components of bufp describe the pattern to be used.  */
  1102.  
  1103. void
  1104. re_compile_fastmap (bufp)
  1105.      struct re_pattern_buffer *bufp;
  1106. {
  1107.   unsigned char *pattern = bufp->buffer;
  1108.   int size = bufp->used;
  1109.   register unsigned char *fastmap = bufp->fastmap;
  1110.   register unsigned char *p = pattern;
  1111.   register unsigned char *pend = pattern + size;
  1112.   register int j, k;
  1113.  
  1114.   unsigned char *stackb[NFAILURES];
  1115.   unsigned char **stackp = stackb;
  1116.  
  1117.   bzero (fastmap, (1 << BYTEWIDTH));
  1118.   bufp->fastmap_accurate = 1;
  1119.   bufp->can_be_null = 0;
  1120.       
  1121.   while (p)
  1122.     {
  1123.       if (p == pend)
  1124.     {
  1125.       bufp->can_be_null = 1;
  1126.       break;
  1127.     }
  1128. #ifdef SWITCH_ENUM_BUG
  1129.       switch ((int) ((enum regexpcode) *p++))
  1130. #else
  1131.       switch ((enum regexpcode) *p++)
  1132. #endif
  1133.     {
  1134.     case exactn:
  1135.       fastmap[p[1]] = 1;
  1136.       break;
  1137.  
  1138.         case begline:
  1139.         case before_dot:
  1140.     case at_dot:
  1141.     case after_dot:
  1142.     case begbuf:
  1143.     case endbuf:
  1144.     case wordbound:
  1145.     case notwordbound:
  1146.     case wordbeg:
  1147.     case wordend:
  1148.       continue;
  1149.  
  1150.     case endline:
  1151.       fastmap['\n'] = 1;
  1152.       if (bufp->can_be_null != 1)
  1153.         bufp->can_be_null = 2;
  1154.       break;
  1155.  
  1156.     case finalize_jump:
  1157.     case maybe_finalize_jump:
  1158.     case jump:
  1159.     case dummy_failure_jump:
  1160.       bufp->can_be_null = 1;
  1161.       j = *p++ & 0377;
  1162.       j += SIGN_EXTEND_CHAR (*(char *)p) << 8;
  1163.       p += j + 1;        /* The 1 compensates for missing ++ above */
  1164.       if (j > 0)
  1165.         continue;
  1166.       /* Jump backward reached implies we just went through
  1167.          the body of a loop and matched nothing.
  1168.          Opcode jumped to should be an on_failure_jump.
  1169.          Just treat it like an ordinary jump.
  1170.          For a * loop, it has pushed its failure point already;
  1171.          if so, discard that as redundant.  */
  1172.       if ((enum regexpcode) *p != on_failure_jump)
  1173.         continue;
  1174.       p++;
  1175.       j = *p++ & 0377;
  1176.       j += SIGN_EXTEND_CHAR (*(char *)p) << 8;
  1177.       p += j + 1;        /* The 1 compensates for missing ++ above */
  1178.       if (stackp != stackb && *stackp == p)
  1179.         stackp--;
  1180.       continue;
  1181.       
  1182.     case on_failure_jump:
  1183.       j = *p++ & 0377;
  1184.       j += SIGN_EXTEND_CHAR (*(char *)p) << 8;
  1185.       p++;
  1186.       *++stackp = p + j;
  1187.       continue;
  1188.  
  1189.     case start_memory:
  1190.     case stop_memory:
  1191.       p++;
  1192.       continue;
  1193.  
  1194.     case duplicate:
  1195.       bufp->can_be_null = 1;
  1196.       fastmap['\n'] = 1;
  1197.     case anychar:
  1198.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  1199.         if (j != '\n')
  1200.           fastmap[j] = 1;
  1201.       if (bufp->can_be_null)
  1202.         return;
  1203.       /* Don't return; check the alternative paths
  1204.          so we can set can_be_null if appropriate.  */
  1205.       break;
  1206.  
  1207.     case wordchar:
  1208.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  1209.         if (SYNTAX (j) == Sword)
  1210.           fastmap[j] = 1;
  1211.       break;
  1212.  
  1213.     case notwordchar:
  1214.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  1215.         if (SYNTAX (j) != Sword)
  1216.           fastmap[j] = 1;
  1217.       break;
  1218.  
  1219. #ifdef emacs
  1220.     case syntaxspec:
  1221.       k = *p++;
  1222.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  1223.         if (SYNTAX (j) == (enum syntaxcode) k)
  1224.           fastmap[j] = 1;
  1225.       break;
  1226.  
  1227.     case notsyntaxspec:
  1228.       k = *p++;
  1229.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  1230.         if (SYNTAX (j) != (enum syntaxcode) k)
  1231.           fastmap[j] = 1;
  1232.       break;
  1233. #endif emacs
  1234.  
  1235.     case charset:
  1236.       for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
  1237.         if (p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH)))
  1238.           fastmap[j] = 1;
  1239.       break;
  1240.  
  1241.     case charset_not:
  1242.       /* Chars beyond end of map must be allowed */
  1243.       for (j = *p * BYTEWIDTH; j < (1 << BYTEWIDTH); j++)
  1244.         fastmap[j] = 1;
  1245.  
  1246.       for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
  1247.         if (!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))))
  1248.           fastmap[j] = 1;
  1249.       break;
  1250.     }
  1251.  
  1252.       /* Get here means we have successfully found the possible starting characters
  1253.      of one path of the pattern.  We need not follow this path any farther.
  1254.      Instead, look at the next alternative remembered in the stack. */
  1255.       if (stackp != stackb)
  1256.     p = *stackp--;
  1257.       else
  1258.     break;
  1259.     }
  1260. }
  1261.  
  1262. /* Like re_search_2, below, but only one string is specified. */
  1263.  
  1264. int
  1265. re_search (pbufp, string, size, startpos, range, regs)
  1266.      struct re_pattern_buffer *pbufp;
  1267.      unsigned char *string;
  1268.      int size, startpos, range;
  1269.      struct re_registers *regs;
  1270. {
  1271.   return re_search_2 (pbufp, 0, 0, string, size, startpos, range, regs, size);
  1272. }
  1273.  
  1274. /* Like re_match_2 but tries first a match starting at index STARTPOS,
  1275.    then at STARTPOS + 1, and so on.
  1276.    RANGE is the number of places to try before giving up.
  1277.    If RANGE is negative, the starting positions tried are
  1278.     STARTPOS, STARTPOS - 1, etc.
  1279.    It is up to the caller to make sure that range is not so large
  1280.    as to take the starting position outside of the input strings.
  1281.  
  1282. The value returned is the position at which the match was found,
  1283.  or -1 if no match was found,
  1284.  or -2 if error (such as failure stack overflow).  */
  1285.  
  1286. int
  1287. re_search_2 (pbufp, string1, size1, string2, size2, startpos, range, regs, mstop)
  1288.      struct re_pattern_buffer *pbufp;
  1289.      unsigned char *string1, *string2;
  1290.      int size1, size2;
  1291.      int startpos;
  1292.      register int range;
  1293.      struct re_registers *regs;
  1294.      int mstop;
  1295. {
  1296.   register unsigned char *fastmap = pbufp->fastmap;
  1297.   int total = size1 + size2;
  1298.   int val;
  1299.  
  1300.   /* Update the fastmap now if not correct already */
  1301.   if (fastmap && !pbufp->fastmap_accurate)
  1302.     re_compile_fastmap (pbufp);
  1303.   
  1304.   /* Don't waste time in a long search for a pattern
  1305.      that says it is anchored.  */
  1306.   if (pbufp->used > 0 && (enum regexpcode) pbufp->buffer[0] == begbuf
  1307.       && range > 0)
  1308.     {
  1309.       if (startpos > 0)
  1310.     return -1;
  1311.       else
  1312.     range = 1;
  1313.     }
  1314.  
  1315.   while (1)
  1316.     {
  1317.       /* If a fastmap is supplied, skip quickly over characters
  1318.      that cannot possibly be the start of a match.
  1319.      Note, however, that if the pattern can possibly match
  1320.      the null string, we must test it at each starting point
  1321.      so that we take the first null string we get.  */
  1322.  
  1323.       if (fastmap && startpos < total && pbufp->can_be_null != 1)
  1324.     {
  1325.       if (range > 0)
  1326.         {
  1327.           register int lim = 0;
  1328.           register unsigned char *p;
  1329.           int irange = range;
  1330.           if (startpos < size1 && startpos + range >= size1)
  1331.         lim = range - (size1 - startpos);
  1332.  
  1333.           p = ((unsigned char *)
  1334.            &(startpos >= size1 ? string2 - size1 : string1)[startpos]);
  1335.  
  1336.           while (range > lim && !fastmap[*p++])
  1337.             range--;
  1338.           startpos += irange - range;
  1339.         }
  1340.       else
  1341.         {
  1342.           register unsigned char c;
  1343.           if (startpos >= size1)
  1344.         c = string2[startpos - size1];
  1345.           else
  1346.         c = string1[startpos];
  1347.           if (!fastmap[c])
  1348.         goto advance;
  1349.         }
  1350.     }
  1351.  
  1352.       if (range >= 0 && startpos == total
  1353.       && fastmap && pbufp->can_be_null == 0)
  1354.     return -1;
  1355.  
  1356.       val = re_match_2 (pbufp, string1, size1, string2, size2, startpos, regs,
  1357.             mstop);
  1358.       /* Propagate error indication if worse than mere failure.  */
  1359.       if (val == -2)
  1360.     return -2;
  1361.       /* Return position on success.  */
  1362.       if (0 <= val)
  1363.     return startpos;
  1364.  
  1365. #ifdef C_ALLOCA
  1366.       alloca (0);
  1367. #endif /* C_ALLOCA */
  1368.  
  1369.     advance:
  1370.       if (!range) break;
  1371.       if (range > 0) range--, startpos++; else range++, startpos--;
  1372.     }
  1373.   return -1;
  1374. }
  1375.  
  1376. #ifndef emacs   /* emacs never uses this */
  1377. int
  1378. re_match (pbufp, string, size, pos, regs)
  1379.      struct re_pattern_buffer *pbufp;
  1380.      unsigned char *string;
  1381.      int size, pos;
  1382.      struct re_registers *regs;
  1383. {
  1384.   return re_match_2 (pbufp, 0, 0, string, size, pos, regs, size);
  1385. }
  1386. #endif /* emacs */
  1387.  
  1388. /* Maximum size of failure stack.  Beyond this, overflow is an error.  */
  1389.  
  1390. int re_max_failures = 2000;
  1391.  
  1392. /* Match the pattern described by PBUFP
  1393.    against data which is the virtual concatenation of STRING1 and STRING2.
  1394.    SIZE1 and SIZE2 are the sizes of the two data strings.
  1395.    Start the match at position POS.
  1396.    Do not consider matching past the position MSTOP.
  1397.  
  1398.    If pbufp->fastmap is nonzero, then it had better be up to date.
  1399.  
  1400.    The reason that the data to match are specified as two components
  1401.    which are to be regarded as concatenated
  1402.    is so this function can be used directly on the contents of an Emacs buffer.
  1403.  
  1404.    -1 is returned if there is no match.  -2 is returned if there is
  1405.    an error (such as match stack overflow).  Otherwise the value is the length
  1406.    of the substring which was matched.  */
  1407.  
  1408. int
  1409. re_match_2 (pbufp, string1, size1, string2, size2, pos, regs, mstop)
  1410.      struct re_pattern_buffer *pbufp;
  1411.      unsigned char *string1, *string2;
  1412.      int size1, size2;
  1413.      int pos;
  1414.      struct re_registers *regs;
  1415.      int mstop;
  1416. {
  1417.   register unsigned char *p = (unsigned char *) pbufp->buffer;
  1418.   register unsigned char *pend = p + pbufp->used;
  1419.   /* End of first string */
  1420.   unsigned char *end1;
  1421.   /* End of second string */
  1422.   unsigned char *end2;
  1423.   /* Pointer just past last char to consider matching */
  1424.   unsigned char *end_match_1, *end_match_2;
  1425.   register unsigned char *d, *dend;
  1426.   register int mcnt;
  1427.  
  1428.  /* Failure point stack.  Each place that can handle a failure further down the line
  1429.     pushes a failure point on this stack.  It consists of two char *'s.
  1430.     The first one pushed is where to resume scanning the pattern;
  1431.     the second pushed is where to resume scanning the strings.
  1432.     If the latter is zero, the failure point is a "dummy".
  1433.     If a failure happens and the innermost failure point is dormant,
  1434.     it discards that failure point and tries the next one. */
  1435.  
  1436.   unsigned char *initial_stack[2 * NFAILURES];
  1437.   unsigned char **stackb = initial_stack;
  1438.   unsigned char **stackp = stackb, **stacke = &stackb[2 * NFAILURES];
  1439.  
  1440.   /* Information on the "contents" of registers.
  1441.      These are pointers into the input strings; they record
  1442.      just what was matched (on this attempt) by some part of the pattern.
  1443.      The start_memory command stores the start of a register's contents
  1444.      and the stop_memory command stores the end.
  1445.  
  1446.      At that point, regstart[regnum] points to the first character in the register,
  1447.      regend[regnum] points to the first character beyond the end of the register,
  1448.      regstart_seg1[regnum] is true iff regstart[regnum] points into string1,
  1449.      and regend_seg1[regnum] is true iff regend[regnum] points into string1.  */
  1450.  
  1451.   unsigned char *regstart[RE_NREGS];
  1452.   unsigned char *regend[RE_NREGS];
  1453.   unsigned char regstart_seg1[RE_NREGS], regend_seg1[RE_NREGS];
  1454.  
  1455.   /* Set up pointers to ends of strings.
  1456.      Don't allow the second string to be empty unless both are empty.  */
  1457.   if (!size2)
  1458.     {
  1459.       string2 = string1;
  1460.       size2 = size1;
  1461.       string1 = 0;
  1462.       size1 = 0;
  1463.     }
  1464.   end1 = string1 + size1;
  1465.   end2 = string2 + size2;
  1466.  
  1467.   /* Compute where to stop matching, within the two strings */
  1468.   if (mstop <= size1)
  1469.     {
  1470.       end_match_1 = string1 + mstop;
  1471.       end_match_2 = string2;
  1472.     }
  1473.   else
  1474.     {
  1475.       end_match_1 = end1;
  1476.       end_match_2 = string2 + mstop - size1;
  1477.     }
  1478.  
  1479.   /* Initialize \) text positions to -1
  1480.      to mark ones that no \( or \) has been seen for.  */
  1481.  
  1482.   for (mcnt = 0; mcnt < sizeof (regend) / sizeof (*regend); mcnt++)
  1483.     regend[mcnt] = (unsigned char *) -1;
  1484.  
  1485.   /* `p' scans through the pattern as `d' scans through the data.
  1486.      `dend' is the end of the input string that `d' points within.
  1487.      `d' is advanced into the following input string whenever necessary,
  1488.      but this happens before fetching;
  1489.      therefore, at the beginning of the loop,
  1490.      `d' can be pointing at the end of a string,
  1491.      but it cannot equal string2.  */
  1492.  
  1493.   if (pos <= size1)
  1494.     d = string1 + pos, dend = end_match_1;
  1495.   else
  1496.     d = string2 + pos - size1, dend = end_match_2;
  1497.  
  1498. /* Write PREFETCH; just before fetching a character with *d.  */
  1499. #define PREFETCH \
  1500.  while (d == dend)                            \
  1501.   { if (dend == end_match_2) goto fail;  /* end of string2 => failure */   \
  1502.     d = string2;  /* end of string1 => advance to string2. */       \
  1503.     dend = end_match_2; }
  1504.  
  1505.   /* This loop loops over pattern commands.
  1506.      It exits by returning from the function if match is complete,
  1507.      or it drops through if match fails at this starting point in the input data. */
  1508.  
  1509.   while (1)
  1510.     {
  1511.       if (p == pend)
  1512.     /* End of pattern means we have succeeded! */
  1513.     {
  1514.       /* If caller wants register contents data back, convert it to indices */
  1515.       if (regs)
  1516.         {
  1517.            regs->start[0] = pos;
  1518.            if (dend == end_match_1)
  1519.          regs->end[0] = d - string1;
  1520.            else
  1521.          regs->end[0] = d - string2 + size1;
  1522.            for (mcnt = 1; mcnt < RE_NREGS; mcnt++)
  1523.         {
  1524.           if (regend[mcnt] == (unsigned char *) -1)
  1525.             {
  1526.               regs->start[mcnt] = -1;
  1527.               regs->end[mcnt] = -1;
  1528.               continue;
  1529.             }
  1530.            if (regstart_seg1[mcnt])
  1531.             regs->start[mcnt] = regstart[mcnt] - string1;
  1532.           else
  1533.             regs->start[mcnt] = regstart[mcnt] - string2 + size1;
  1534.            if (regend_seg1[mcnt])
  1535.             regs->end[mcnt] = regend[mcnt] - string1;
  1536.           else
  1537.             regs->end[mcnt] = regend[mcnt] - string2 + size1;
  1538.         }
  1539.         }
  1540.        if (dend == end_match_1)
  1541.         return (d - string1 - pos);
  1542.       else
  1543.         return d - string2 + size1 - pos;
  1544.     }
  1545.  
  1546.       /* Otherwise match next pattern command */
  1547. #ifdef SWITCH_ENUM_BUG
  1548.       switch ((int) ((enum regexpcode) *p++))
  1549. #else
  1550.       switch ((enum regexpcode) *p++)
  1551. #endif
  1552.     {
  1553.  
  1554.     /* \( is represented by a start_memory, \) by a stop_memory.
  1555.         Both of those commands contain a "register number" argument.
  1556.         The text matched within the \( and \) is recorded under that number.
  1557.         Then, \<digit> turns into a `duplicate' command which
  1558.         is followed by the numeric value of <digit> as the register number. */
  1559.  
  1560.     case start_memory:
  1561.       regstart[*p] = d;
  1562.        regstart_seg1[*p++] = (dend == end_match_1);
  1563.       break;
  1564.  
  1565.     case stop_memory:
  1566.       regend[*p] = d;
  1567.        regend_seg1[*p++] = (dend == end_match_1);
  1568.       break;
  1569.  
  1570.     case duplicate:
  1571.       {
  1572.         int regno = *p++;   /* Get which register to match against */
  1573.         register unsigned char *d2, *dend2;
  1574.  
  1575.         /* Don't allow matching a register that hasn't been used.
  1576.            This isn't fully reliable in the current version,
  1577.            but it is better than crashing.  */
  1578.         if ((int) regend[regno] <= -1)
  1579.           goto fail;
  1580.  
  1581.         d2 = regstart[regno];
  1582.          dend2 = ((regstart_seg1[regno] == regend_seg1[regno])
  1583.              ? regend[regno] : end_match_1);
  1584.         while (1)
  1585.           {
  1586.         /* Advance to next segment in register contents, if necessary */
  1587.         while (d2 == dend2)
  1588.           {
  1589.             if (dend2 == end_match_2) break;
  1590.             if (dend2 == regend[regno]) break;
  1591.             d2 = string2, dend2 = regend[regno];  /* end of string1 => advance to string2. */
  1592.           }
  1593.         /* At end of register contents => success */
  1594.         if (d2 == dend2) break;
  1595.  
  1596.         /* Advance to next segment in data being matched, if necessary */
  1597.         PREFETCH;
  1598.  
  1599.         /* mcnt gets # consecutive chars to compare */
  1600.         mcnt = dend - d;
  1601.         if (mcnt > dend2 - d2)
  1602.           mcnt = dend2 - d2;
  1603.         /* Compare that many; failure if mismatch, else skip them. */
  1604.         if (bcmp (d, d2, mcnt))
  1605.           goto fail;
  1606.         d += mcnt, d2 += mcnt;
  1607.           }
  1608.       }
  1609.       break;
  1610.  
  1611.     case anychar:
  1612.       /* fetch a data character */
  1613.       PREFETCH;
  1614.       /* Match anything but a newline.  */
  1615.       if (*d++ == '\n')
  1616.         goto fail;
  1617.       break;
  1618.  
  1619.     case charset:
  1620.     case charset_not:
  1621.       {
  1622.         /* Nonzero for charset_not */
  1623.         int not = 0;
  1624.         register int c;
  1625.         if (*(p - 1) == (unsigned char) charset_not)
  1626.           not = 1;
  1627.  
  1628.         /* fetch a data character */
  1629.         PREFETCH;
  1630.  
  1631.         c = *d;
  1632.  
  1633.         if (c < *p * BYTEWIDTH
  1634.         && p[1 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
  1635.           not = !not;
  1636.  
  1637.         p += 1 + *p;
  1638.  
  1639.         if (!not) goto fail;
  1640.         d++;
  1641.         break;
  1642.       }
  1643.  
  1644.     case begline:
  1645.       if (d == string1 || d[-1] == '\n')
  1646.         break;
  1647.       goto fail;
  1648.  
  1649.     case endline:
  1650.       if (d == end2
  1651.           || (d == end1 ? (size2 == 0 || *string2 == '\n') : *d == '\n'))
  1652.         break;
  1653.       goto fail;
  1654.  
  1655.     /* "or" constructs ("|") are handled by starting each alternative
  1656.         with an on_failure_jump that points to the start of the next alternative.
  1657.         Each alternative except the last ends with a jump to the joining point.
  1658.         (Actually, each jump except for the last one really jumps
  1659.          to the following jump, because tensioning the jumps is a hassle.) */
  1660.  
  1661.     /* The start of a stupid repeat has an on_failure_jump that points
  1662.        past the end of the repeat text.
  1663.        This makes a failure point so that, on failure to match a repetition,
  1664.        matching restarts past as many repetitions have been found
  1665.        with no way to fail and look for another one.  */
  1666.  
  1667.     /* A smart repeat is similar but loops back to the on_failure_jump
  1668.        so that each repetition makes another failure point. */
  1669.  
  1670.     case on_failure_jump:
  1671.       if (stackp == stacke)
  1672.         {
  1673.           unsigned char **stackx;
  1674.           if (stacke - stackb > re_max_failures)
  1675.         return -2;
  1676.           stackx = (unsigned char **) alloca (2 * (stacke - stackb)
  1677.                      * sizeof (unsigned char *));
  1678.           bcopy (stackb, stackx, (stacke - stackb) * sizeof (unsigned char *));
  1679.           stackp = stackx + (stackp - stackb);
  1680.           stacke = stackx + 2 * (stacke - stackb);
  1681.           stackb = stackx;
  1682.         }
  1683.       mcnt = *p++ & 0377;
  1684.       mcnt += SIGN_EXTEND_CHAR (*(char *)p) << 8;
  1685.       p++;
  1686.       *stackp++ = mcnt + p;
  1687.       *stackp++ = d;
  1688.       break;
  1689.  
  1690.     /* The end of a smart repeat has an maybe_finalize_jump back.
  1691.        Change it either to a finalize_jump or an ordinary jump. */
  1692.  
  1693.     case maybe_finalize_jump:
  1694.       mcnt = *p++ & 0377;
  1695.       mcnt += SIGN_EXTEND_CHAR (*(char *)p) << 8;
  1696.       p++;
  1697.       /* Compare what follows with the begining of the repeat.
  1698.          If we can establish that there is nothing that they would
  1699.          both match, we can change to finalize_jump */
  1700.       if (p == pend)
  1701.         p[-3] = (unsigned char) finalize_jump;
  1702.       else if (*p == (unsigned char) exactn
  1703.            || *p == (unsigned char) endline)
  1704.         {
  1705.           register int c = *p == (unsigned char) endline ? '\n' : p[2];
  1706.           register unsigned char *p1 = p + mcnt;
  1707.           /* p1[0] ... p1[2] are an on_failure_jump.
  1708.          Examine what follows that */
  1709.           if (p1[3] == (unsigned char) exactn && p1[5] != c)
  1710.         p[-3] = (unsigned char) finalize_jump;
  1711.           else if (p1[3] == (unsigned char) charset
  1712.                || p1[3] == (unsigned char) charset_not)
  1713.         {
  1714.           int not = p1[3] == (unsigned char) charset_not;
  1715.           if (c < p1[4] * BYTEWIDTH
  1716.               && p1[5 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
  1717.             not = !not;
  1718.           /* not is 1 if c would match */
  1719.           /* That means it is not safe to finalize */
  1720.           if (!not)
  1721.             p[-3] = (unsigned char) finalize_jump;
  1722.         }
  1723.         }
  1724.       p -= 2;
  1725.       if (p[-1] != (unsigned char) finalize_jump)
  1726.         {
  1727.           p[-1] = (unsigned char) jump;
  1728.           goto nofinalize;
  1729.         }
  1730.  
  1731.     /* The end of a stupid repeat has a finalize-jump
  1732.        back to the start, where another failure point will be made
  1733.        which will point after all the repetitions found so far. */
  1734.  
  1735.     case finalize_jump:
  1736.       stackp -= 2;
  1737.  
  1738.     case jump:
  1739.     nofinalize:
  1740.       mcnt = *p++ & 0377;
  1741.       mcnt += SIGN_EXTEND_CHAR (*(char *)p) << 8;
  1742.       p += mcnt + 1;    /* The 1 compensates for missing ++ above */
  1743.       break;
  1744.  
  1745.     case dummy_failure_jump:
  1746.       if (stackp == stacke)
  1747.         {
  1748.           unsigned char **stackx
  1749.         = (unsigned char **) alloca (2 * (stacke - stackb)
  1750.                          * sizeof (unsigned char *));
  1751.           bcopy (stackb, stackx, (stacke - stackb) * sizeof (unsigned char *));
  1752.           stackp = stackx + (stackp - stackb);
  1753.           stacke = stackx + 2 * (stacke - stackb);
  1754.           stackb = stackx;
  1755.         }
  1756.       *stackp++ = 0;
  1757.       *stackp++ = 0;
  1758.       goto nofinalize;
  1759.  
  1760.     case wordbound:
  1761.       if (d == string1  /* Points to first char */
  1762.           || d == end2  /* Points to end */
  1763.           || (d == end1 && size2 == 0)) /* Points to end */
  1764.         break;
  1765.       if ((SYNTAX (d[-1]) == Sword)
  1766.           != (SYNTAX (d == end1 ? *string2 : *d) == Sword))
  1767.         break;
  1768.       goto fail;
  1769.  
  1770.     case notwordbound:
  1771.       if (d == string1  /* Points to first char */
  1772.           || d == end2  /* Points to end */
  1773.           || (d == end1 && size2 == 0)) /* Points to end */
  1774.         goto fail;
  1775.       if ((SYNTAX (d[-1]) == Sword)
  1776.           != (SYNTAX (d == end1 ? *string2 : *d) == Sword))
  1777.         goto fail;
  1778.       break;
  1779.  
  1780.     case wordbeg:
  1781.       if (d == end2  /* Points to end */
  1782.           || (d == end1 && size2 == 0) /* Points to end */
  1783.           || SYNTAX (* (d == end1 ? string2 : d)) != Sword) /* Next char not a letter */
  1784.         goto fail;
  1785.       if (d == string1  /* Points to first char */
  1786.           || SYNTAX (d[-1]) != Sword)  /* prev char not letter */
  1787.         break;
  1788.       goto fail;
  1789.  
  1790.     case wordend:
  1791.       if (d == string1  /* Points to first char */
  1792.           || SYNTAX (d[-1]) != Sword)  /* prev char not letter */
  1793.         goto fail;
  1794.       if (d == end2  /* Points to end */
  1795.           || (d == end1 && size2 == 0) /* Points to end */
  1796.           || SYNTAX (d == end1 ? *string2 : *d) != Sword) /* Next char not a letter */
  1797.         break;
  1798.       goto fail;
  1799.  
  1800. #ifdef emacs
  1801.     case before_dot:
  1802.       if (PTR_CHAR_POS (d) + 1 >= point)
  1803.         goto fail;
  1804.       break;
  1805.  
  1806.     case at_dot:
  1807.       if (PTR_CHAR_POS (d) + 1 != point)
  1808.         goto fail;
  1809.       break;
  1810.  
  1811.     case after_dot:
  1812.       if (PTR_CHAR_POS (d) + 1 <= point)
  1813.         goto fail;
  1814.       break;
  1815.  
  1816.     case wordchar:
  1817.       mcnt = (int) Sword;
  1818.       goto matchsyntax;
  1819.  
  1820.     case syntaxspec:
  1821.       mcnt = *p++;
  1822.     matchsyntax:
  1823.       PREFETCH;
  1824.       if (SYNTAX (*d++) != (enum syntaxcode) mcnt) goto fail;
  1825.       break;
  1826.       
  1827.     case notwordchar:
  1828.       mcnt = (int) Sword;
  1829.       goto matchnotsyntax;
  1830.  
  1831.     case notsyntaxspec:
  1832.       mcnt = *p++;
  1833.     matchnotsyntax:
  1834.       PREFETCH;
  1835.       if (SYNTAX (*d++) == (enum syntaxcode) mcnt) goto fail;
  1836.       break;
  1837. #else
  1838.     case wordchar:
  1839.       PREFETCH;
  1840.       if (SYNTAX (*d++) == 0) goto fail;
  1841.       break;
  1842.       
  1843.     case notwordchar:
  1844.       PREFETCH;
  1845.       if (SYNTAX (*d++) != 0) goto fail;
  1846.       break;
  1847. #endif not emacs
  1848.  
  1849.     case begbuf:
  1850.       if (d == string1)    /* Note, d cannot equal string2 */
  1851.         break;        /* unless string1 == string2.  */
  1852.       goto fail;
  1853.  
  1854.     case endbuf:
  1855.       if (d == end2 || (d == end1 && size2 == 0))
  1856.         break;
  1857.       goto fail;
  1858.  
  1859.     case exactn:
  1860.       /* Match the next few pattern characters exactly.
  1861.          mcnt is how many characters to match. */
  1862.       mcnt = *p++;
  1863.       do
  1864.         {
  1865.           PREFETCH;
  1866.           if (*d++ != *p++) goto fail;
  1867.         }
  1868.       while (--mcnt);
  1869.       break;
  1870.     }
  1871.       continue;    /* Successfully matched one pattern command; keep matching */
  1872.  
  1873.       /* Jump here if any matching operation fails. */
  1874.     fail:
  1875.       if (stackp != stackb)
  1876.     /* A restart point is known.  Restart there and pop it. */
  1877.     {
  1878.       if (!stackp[-2])
  1879.         {   /* If innermost failure point is dormant, flush it and keep looking */
  1880.           stackp -= 2;
  1881.           goto fail;
  1882.         }
  1883.       d = *--stackp;
  1884.       p = *--stackp;
  1885.       if (d >= string1 && d <= end1)
  1886.         dend = end_match_1;
  1887.     }
  1888.       else break;   /* Matching at this starting point really fails! */
  1889.     }
  1890.   return -1;         /* Failure to match */
  1891. }
  1892.  
  1893. /* Entry points compatible with bsd4.2 regex library */
  1894.  
  1895. #ifndef emacs
  1896.  
  1897. static struct re_pattern_buffer re_comp_buf;
  1898.  
  1899. char *
  1900. re_comp (s)
  1901.      unsigned char *s;
  1902. {
  1903.   if (!s)
  1904.     {
  1905.       if (!re_comp_buf.buffer)
  1906.     return "No previous regular expression";
  1907.       return 0;
  1908.     }
  1909.  
  1910.   if (!re_comp_buf.buffer)
  1911.     {
  1912.       if (!(re_comp_buf.buffer = (unsigned char *) malloc (200)))
  1913.     return "Memory exhausted";
  1914.       re_comp_buf.allocated = 200;
  1915.       if (!(re_comp_buf.fastmap = (unsigned char *) malloc (1 << BYTEWIDTH)))
  1916.     return "Memory exhausted";
  1917.     }
  1918.   return re_compile_pattern (s, strlen (s), &re_comp_buf);
  1919. }
  1920.  
  1921. int
  1922. re_exec (s)
  1923.      unsigned char *s;
  1924. {
  1925.   int len = strlen (s);
  1926.   return 0 <= re_search (&re_comp_buf, s, len, 0, len, 0);
  1927. }
  1928.  
  1929. #endif /* emacs */
  1930.  
  1931. #ifdef test
  1932.  
  1933. #include <stdio.h>
  1934.  
  1935. /* Indexed by a character, gives the upper case equivalent of the character */
  1936.  
  1937. static unsigned char upcase[0400] = 
  1938.   { 000, 001, 002, 003, 004, 005, 006, 007,
  1939.     010, 011, 012, 013, 014, 015, 016, 017,
  1940.     020, 021, 022, 023, 024, 025, 026, 027,
  1941.     030, 031, 032, 033, 034, 035, 036, 037,
  1942.     040, 041, 042, 043, 044, 045, 046, 047,
  1943.     050, 051, 052, 053, 054, 055, 056, 057,
  1944.     060, 061, 062, 063, 064, 065, 066, 067,
  1945.     070, 071, 072, 073, 074, 075, 076, 077,
  1946.     0100, 0101, 0102, 0103, 0104, 0105, 0106, 0107,
  1947.     0110, 0111, 0112, 0113, 0114, 0115, 0116, 0117,
  1948.     0120, 0121, 0122, 0123, 0124, 0125, 0126, 0127,
  1949.     0130, 0131, 0132, 0133, 0134, 0135, 0136, 0137,
  1950.     0140, 0101, 0102, 0103, 0104, 0105, 0106, 0107,
  1951.     0110, 0111, 0112, 0113, 0114, 0115, 0116, 0117,
  1952.     0120, 0121, 0122, 0123, 0124, 0125, 0126, 0127,
  1953.     0130, 0131, 0132, 0173, 0174, 0175, 0176, 0177,
  1954.     0200, 0201, 0202, 0203, 0204, 0205, 0206, 0207,
  1955.     0210, 0211, 0212, 0213, 0214, 0215, 0216, 0217,
  1956.     0220, 0221, 0222, 0223, 0224, 0225, 0226, 0227,
  1957.     0230, 0231, 0232, 0233, 0234, 0235, 0236, 0237,
  1958.     0240, 0241, 0242, 0243, 0244, 0245, 0246, 0247,
  1959.     0250, 0251, 0252, 0253, 0254, 0255, 0256, 0257,
  1960.     0260, 0261, 0262, 0263, 0264, 0265, 0266, 0267,
  1961.     0270, 0271, 0272, 0273, 0274, 0275, 0276, 0277,
  1962.     0300, 0301, 0302, 0303, 0304, 0305, 0306, 0307,
  1963.     0310, 0311, 0312, 0313, 0314, 0315, 0316, 0317,
  1964.     0320, 0321, 0322, 0323, 0324, 0325, 0326, 0327,
  1965.     0330, 0331, 0332, 0333, 0334, 0335, 0336, 0337,
  1966.     0340, 0341, 0342, 0343, 0344, 0345, 0346, 0347,
  1967.     0350, 0351, 0352, 0353, 0354, 0355, 0356, 0357,
  1968.     0360, 0361, 0362, 0363, 0364, 0365, 0366, 0367,
  1969.     0370, 0371, 0372, 0373, 0374, 0375, 0376, 0377
  1970.   };
  1971.  
  1972. main (argc, argv)
  1973.      int argc;
  1974.      char **argv;
  1975. {
  1976.   unsigned char pat[80];
  1977.   struct re_pattern_buffer buf;
  1978.   int i;
  1979.   unsigned char c;
  1980.   unsigned char fastmap[(1 << BYTEWIDTH)];
  1981.  
  1982.   /* Allow a command argument to specify the style of syntax.  */
  1983.   if (argc > 1)
  1984.     obscure_syntax = atoi (argv[1]);
  1985.  
  1986.   buf.allocated = 40;
  1987.   buf.buffer = (unsigned char *) malloc (buf.allocated);
  1988.   buf.fastmap = fastmap;
  1989.  
  1990.   while (1)
  1991.     {
  1992.       gets (pat);
  1993.  
  1994.       if (*pat)
  1995.     {
  1996.           re_compile_pattern (pat, strlen(pat), &buf);
  1997.  
  1998.       for (i = 0; i < buf.used; i++)
  1999.         printchar (buf.buffer[i]);
  2000.  
  2001.       putchar ('\n');
  2002.  
  2003.       printf ("%d allocated, %d used.\n", buf.allocated, buf.used);
  2004.  
  2005.       re_compile_fastmap (&buf);
  2006.       printf ("Allowed by fastmap: ");
  2007.       for (i = 0; i < (1 << BYTEWIDTH); i++)
  2008.         if (fastmap[i]) printchar (i);
  2009.       putchar ('\n');
  2010.     }
  2011.  
  2012.       gets (pat);    /* Now read the string to match against */
  2013.  
  2014.       i = re_match (&buf, pat, strlen (pat), 0, 0);
  2015.       printf ("Match value %d.\n", i);
  2016.     }
  2017. }
  2018.  
  2019. #ifdef NOTDEF
  2020. print_buf (bufp)
  2021.      struct re_pattern_buffer *bufp;
  2022. {
  2023.   int i;
  2024.  
  2025.   printf ("buf is :\n----------------\n");
  2026.   for (i = 0; i < bufp->used; i++)
  2027.     printchar (bufp->buffer[i]);
  2028.   
  2029.   printf ("\n%d allocated, %d used.\n", bufp->allocated, bufp->used);
  2030.   
  2031.   printf ("Allowed by fastmap: ");
  2032.   for (i = 0; i < (1 << BYTEWIDTH); i++)
  2033.     if (bufp->fastmap[i])
  2034.       printchar (i);
  2035.   printf ("\nfastmap is%s accurate\n", bufp->fastmap_accurate ? "" : "n't");
  2036.   printf ("can %s be null\n----------", bufp->can_be_null ? "" : "not");
  2037. }
  2038. #endif
  2039.  
  2040. printchar (c)
  2041.      unsigned char c;
  2042. {
  2043.   if (c < 041 || c >= 0177)
  2044.     {
  2045.       putchar ('\\');
  2046.       putchar (((c >> 6) & 3) + '0');
  2047.       putchar (((c >> 3) & 7) + '0');
  2048.       putchar ((c & 7) + '0');
  2049.     }
  2050.   else
  2051.     putchar (c);
  2052. }
  2053.  
  2054. error (string)
  2055.      unsigned char *string;
  2056. {
  2057.   puts (string);
  2058.   exit (1);
  2059. }
  2060.  
  2061. #endif test
  2062.